home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 16039 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  870 b 

  1. Path: ix.netcom.com!news
  2. From: jhewett@ix.netcom.com (Jerry Hewett)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Help - ERROR: Use C++ with iostream.h - ???
  5. Date: Mon, 08 Apr 96 17:01:49 GMT
  6. Organization: Netcom
  7. Message-ID: <N.040896.100149.11@ix.netcom.com>
  8. References: <31671633.33DD@inforamp.net>
  9. NNTP-Posting-Host: tem-ca1-01.ix.netcom.com
  10. X-NETCOM-Date: Mon Apr 08 12:02:19 PM CDT 1996
  11. X-Newsreader: Quarterdeck Message Center [2.00]
  12.  
  13. > When I run a program I brought from schoo, that is properly formatted and
  14. > runs on the UNIX/PowerPC system there, I get an error like "Use C++ with
  15. > iostream.h". I even renamed the first character in the header file from 
  16. > an upper case "I" to a lower case "i". Any ideas?
  17.  
  18. Just guessing here, but if the include in your CPP program looks like this:
  19.  
  20.     #include "iostream.h"
  21.  
  22. Change it to:
  23.  
  24.     #include <iostream.h>
  25.  
  26. Jerry H.
  27.  
  28.  
  29.